Fix call with missing parameters.
authoremellor@ewan <emellor@ewan>
Fri, 23 Sep 2005 14:53:36 +0000 (15:53 +0100)
committeremellor@ewan <emellor@ewan>
Fri, 23 Sep 2005 14:53:36 +0000 (15:53 +0100)
tools/python/xen/xend/PrettyPrint.py

index f17074fdfd4e1063b7fa365e6626870cf5a57640..b0c0fe3440faaba555a7672c9adc6aaea5be8d59 100644 (file)
@@ -252,7 +252,7 @@ class PrettyPrinter:
         self.block = self.block.parent
 
     def prettyprint(self, out=sys.stdout):
-        self.top.prettyprint(Line(out, self.width))
+        self.top.prettyprint(Line(out, self.width), self.width)
 
 class SXPPrettyPrinter(PrettyPrinter):
     """An SXP prettyprinter.